Ubuntu 24.04 にファイルマネージャ Dolphin をインストールする - memo486
https://memo88.hatenablog.com/entry/ubuntu2404-install-dolphin
備忘録です
DXOpalでスイカゲームみたいなのを作った #Ruby - Qiita
https://qiita.com/sonota88/private/105e141d18372918e675
Ruby Advent Calendar 2023 の6日目 書きました。 #dxopal
Ruby + PyCall でデータサイエンス100本ノック(構造化データ加工編)をやってみた - Qiita
https://qiita.com/sonota88/items/52d0e35dc5e6e112c02f
#ruby
書きました
MSX/MSX2用カートリッジを直接差し込める小型ノートPCタイプのMSX2+互換機が登場。当時のジョイスティックも使える
https://www.4gamer.net/games/999/G999902/20250218021/
改訂3版 パーフェクトJava:書籍案内|技術評論社
https://gihyo.jp/book/2025/978-4-297-14680-1
Linux Running On An NES, But For Real This Time! - YouTube
https://www.youtube.com/watch?v=OooHTDMUSGY
Now you can run Ruby on Rails in the browser using WebAssembly
Link: https://web.dev/blog/ruby-on-rails-on-webassembly
Discussion: https://news.ycombinator.com/item?id=43079791
RubyでThreadがデッドロックしたときにバックトレースを表示する。あるいはRubyに送ったパッチの話 - Money Forward Developers Blog
https://moneyforward-dev.jp/entry/2025/02/18/ruby-thread-deadlock
おー、Mastodonにおける引用機能の開発状況についてのエントリが来てる。引用対象の制限や引用された投稿の切り離しを検討しているあたり、やはりBlueskyを参考にしているところがあるな。
そして、やるからにはActivityPubの仕様として作っていくつもりでいると。
/ Bringing Quote Posts to Mastodon - Mastodon Blog
https://blog.joinmastodon.org/2025/02/bringing-quote-posts-to-mastodon/
Ruby: HTMLパーサGammoでルート以外の要素を起点にcssメソッドを使いたい #Ruby - Qiita
https://qiita.com/sonota88/items/d68c4d17876a41a5e097
書きました
Release v0.8.1 · SciRuby/iruby
https://github.com/SciRuby/iruby/releases/tag/v0.8.1
Bundler環境でIRBでもLSPでもドキュメントを利用する方法 (2025-02-11) | あーありがち
https://aligach.net/diary/2025/0211/how-to-install-docs-with-bundler-env/
GitHub代替のGitホスティングでオープンソースコミュニティ界隈から支持されているCodebergが極右勢力からのヘイト攻撃やスパムにさらされているらしい。今後他のコミュニティへの攻撃にも繋がってきたりするだろうか。
---
We stay strong against hate and hatred — Codeberg News
https://blog.codeberg.org/we-stay-strong-against-hate-and-hatred.html
#bookmarks
Ruby 3.4.2 Released https://www.ruby-lang.org/en/news/2025/02/14/ruby-3-4-2-released/
This is a routine update that includes bug fixes. We recommend upgrading your Ruby version at your earliest convenience.
A new release of ktistec that improves database performance is imminent. In the past, database optimization usually meant "fixing a bunch of poorly constructed queries", and I'm sure there's more of that to do—I'm not an expert. But this time, I found most of the queries were as good as they were going to get on my watch (I'm not an expert). If you have a million records and you need to filter and count them, that's just going to take some time...
So this time, I focused on caching the results of queries like that (which really means I focused on cache invalidation, right). A case in point is commit d544b1af. Previously, the nodeinfo
endpoint filtered and counted posts on every request, and it took +80msec to do that. Worse, the filtering pushed everything else out of the sqlite page cache, which made the next, unrelated database query slow!
Caching this value, and only recounting when I post something, not only dropped the service time for the request to ~1msec but actually improved database performance, generally!
More to come...